home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 0.9.1.3 stable / flock-0.9.1.3.en-US.win32.exe / flock / defaults / pref / flock.js < prev   
Text File  |  2007-10-12  |  31KB  |  607 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is mozilla.org code.
  16.  *
  17.  * The Initial Developer of the Original Code is 
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or 
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. // XXX Toolkit-specific preferences should be moved into toolkit.js
  39.  
  40. //@line 41 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  41.  
  42. //@line 44 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  43.  
  44. //@line 50 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  45.  
  46. pref("general.startup.browser", true);
  47.  
  48. pref("browser.chromeURL","chrome://browser/content/");
  49. pref("browser.hiddenWindowChromeURL", "chrome://browser/content/hiddenWindow.xul");
  50. pref("xpinstall.dialog.confirm", "chrome://mozapps/content/xpinstall/xpinstallConfirm.xul");
  51. pref("xpinstall.dialog.progress.skin", "chrome://mozapps/content/extensions/extensions.xul");
  52. pref("xpinstall.dialog.progress.chrome", "chrome://mozapps/content/extensions/extensions.xul");
  53. pref("xpinstall.dialog.progress.type.skin", "Extension:Manager");
  54. pref("xpinstall.dialog.progress.type.chrome", "Extension:Manager");
  55.  
  56. // Developers can set this to |true| if they are constantly changing files in their 
  57. // extensions directory so that the extension system does not constantly think that
  58. // their extensions are being updated and thus reregistered every time the app is
  59. // started.
  60. pref("extensions.ignoreMTimeChanges", false);
  61. // Enables some extra Extension System Logging (can reduce performance)
  62. pref("extensions.logging.enabled", false);
  63. // Hides the install button in the add-ons mgr
  64. pref("extensions.hideInstallButton", true);
  65.  
  66. // Blocklist preferences
  67. pref("extensions.blocklist.enabled", true);
  68. pref("extensions.blocklist.interval", 86400);
  69. pref("extensions.blocklist.url", "https://extensions.flock.com/blocklist/1/%APP_ID%/%APP_VERSION%/");
  70. pref("extensions.blocklist.detailsURL", "https://extensions.flock.com/blocklist/");
  71.  
  72. // Dictionary download preference
  73. pref("browser.dictionaries.download.url", "https://%LOCALE%.add-ons.mozilla.com/%LOCALE%/firefox/%VERSION%/dictionaries/");
  74.  
  75. // App-specific update preferences
  76.  
  77. // Whether or not app updates are enabled
  78. pref("app.update.enabled", true);
  79.  
  80. // This preference turns on app.update.mode and allows automatic download and
  81. // install to take place. We use a separate boolean toggle for this to make
  82. // the UI easier to construct.
  83. pref("app.update.auto", true);
  84.  
  85. // Defines how the Application Update Service notifies the user about updates:
  86. //
  87. // AUM Set to:        Minor Releases:     Major Releases:
  88. // 0                  download no prompt  download no prompt
  89. // 1                  download no prompt  download no prompt if no incompatibilities
  90. // 2                  download no prompt  prompt
  91. //
  92. // See chart in nsUpdateService.js.in for more details
  93. //
  94. pref("app.update.mode", 1);
  95.  
  96. // If set to true, the Update Service will present no UI for any event.
  97. pref("app.update.silent", false);
  98.  
  99. // Update service URL:
  100. //pref("app.update.url", "https://aus2.mozilla.org/update/2/%PRODUCT%/%VERSION%/%BUILD_ID%/%BUILD_TARGET%/%LOCALE%/%CHANNEL%/%OS_VERSION%/update.xml");
  101. pref("app.update.url", "https://updates.flock.com/update/2/%PRODUCT%/%VERSION%/%BUILD_ID%/%BUILD_TARGET%/%LOCALE%/%CHANNEL%/%OS_VERSION%/%FIRST_RUN%/update.xml");
  102. // app.update.url.manual is in branding section
  103. // app.update.url.details is in branding section
  104.  
  105. // User-settable override to app.update.url for testing purposes.
  106. //pref("app.update.url.override", "");
  107.  
  108. // Interval: Time between checks for a new version (in seconds)
  109. //           default=1 day
  110. pref("app.update.interval", 86400);
  111. // Interval: Time before prompting the user to download a new version that 
  112. //           is available (in seconds) default=1 day
  113. pref("app.update.nagTimer.download", 86400);
  114. // Interval: Time before prompting the user to restart to install the latest
  115. //           download (in seconds) default=30 minutes
  116. pref("app.update.nagTimer.restart", 1800);
  117. // Interval: When all registered timers should be checked (in milliseconds)
  118. //           default=5 seconds
  119. pref("app.update.timer", 600000);
  120.  
  121. // Whether or not we show a dialog box informing the user that the update was
  122. // successfully applied. This is off in Firefox by default since we show a 
  123. // upgrade start page instead! Other apps may wish to show this UI, and supply
  124. // a whatsNewURL field in their brand.properties that contains a link to a page
  125. // which tells users what's new in this new update.
  126. pref("app.update.showInstalledUI", false);
  127.  
  128. // 0 = suppress prompting for incompatibilities if there are updates available
  129. //     to newer versions of installed addons that resolve them.
  130. // 1 = suppress prompting for incompatibilities only if there are VersionInfo
  131. //     updates available to installed addons that resolve them, not newer
  132. //     versions.
  133. pref("app.update.incompatible.mode", 0);
  134.  
  135. // Symmetric (can be overridden by individual extensions) update preferences.
  136. // e.g.
  137. //  extensions.{GUID}.update.enabled
  138. //  extensions.{GUID}.update.url
  139. //  extensions.{GUID}.update.interval
  140. //  .. etc ..
  141. //
  142. pref("extensions.update.enabled", true);
  143. pref("extensions.update.url", "chrome://mozapps/locale/extensions/extensions.properties");
  144. pref("extensions.update.interval", 86400);  // Check for updates to Extensions and 
  145.                                             // Themes every day
  146. // Non-symmetric (not shared by extensions) extension-specific [update] preferences
  147. pref("extensions.getMoreExtensionsURL", "https://extensions.flock.com/extensions/");
  148. pref("extensions.getMoreThemesURL", "https://extensions.flock.com/themes/");
  149. pref("extensions.dss.enabled", false);          // Dynamic Skin Switching                                               
  150. pref("extensions.dss.switchPending", false);    // Non-dynamic switch pending after next
  151.                                                 // restart.
  152.  
  153. pref("xpinstall.whitelist.add", "updates.flock.com,extend.flock.com,extensions.flock.com,addons.mozilla.org");
  154.  
  155. pref("keyword.enabled", true);
  156. pref("keyword.URL", "chrome://browser-region/locale/region.properties");
  157.  
  158. pref("general.useragent.locale", "en-US");
  159. pref("general.skins.selectedSkin", "classic/1.0");
  160. pref("general.useragent.extra.firefox", "Firefox/2.0.0.7 Flock/0.9.1.3");
  161. //@line 175 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  162.  
  163. pref("general.smoothScroll", false);
  164. //@line 180 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  165. pref("general.autoScroll", true);
  166. //@line 182 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  167.  
  168. // Whether or not the application should check at startup each time if it 
  169. // is the default browser.
  170. pref("browser.shell.checkDefaultBrowser", true);
  171.  
  172. // 0 = blank, 1 = home (browser.startup.homepage), 2 = last visited page, 3 = resume previous browser session
  173. // The behavior of option 3 is detailed at: http://wiki.mozilla.org/Session_Restore
  174. pref("browser.startup.page",                1);
  175. pref("browser.startup.homepage",            "resource:/browserconfig.properties");
  176.  
  177. // Performance tweaks
  178. pref("browser.cache.disk.capacity", 100000);
  179. pref("network.dnsCacheEntries", 512);
  180. pref("network.http.max-connections", 32);
  181. pref("nglayout.initialpaint.delay", 125);
  182.  
  183. // 0 = once-per-session, 1 = each-time, 2 = never, 3 =
  184. // when-appropriate/automatically
  185. pref("browser.cache.check_doc_frequency", 3);
  186. pref("browser.enable_automatic_image_resizing", true);
  187. pref("browser.urlbar.autoFill", false);
  188. pref("browser.urlbar.matchOnlyTyped", false);
  189. pref("browser.urlbar.hideGoButton", false);
  190. pref("browser.chrome.site_icons", true);
  191. pref("browser.chrome.favicons", true);
  192. pref("browser.formfill.enable", true);
  193.  
  194. pref("browser.download.useDownloadDir", true);
  195. pref("browser.download.folderList", 0);
  196. //@line 212 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  197. pref("browser.download.manager.showAlertOnComplete", true);
  198. //@line 216 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  199. pref("browser.download.manager.showAlertInterval", 2000);
  200. pref("browser.download.manager.retention", 2);
  201. pref("browser.download.manager.showWhenStarting", true);
  202. pref("browser.download.manager.useWindow", true);
  203. pref("browser.download.manager.closeWhenDone", false);
  204. pref("browser.download.manager.openDelay", 0);
  205. pref("browser.download.manager.focusWhenStarting", false);
  206. pref("browser.download.manager.flashCount", 2);
  207.  
  208. // search engines URL
  209. pref("browser.search.searchEnginesURL",      "https://%LOCALE%.add-ons.mozilla.com/%LOCALE%/firefox/%VERSION%/search-engines/");
  210.  
  211. // pointer to the default engine name
  212. pref("browser.search.defaultenginename",      "chrome://browser-region/locale/region.properties");
  213.  
  214. // disable logging for the search service by default
  215. pref("browser.search.log", false);
  216.  
  217. // Ordering of Search Engines in the Engine list. 
  218. pref("browser.search.order.1",                "chrome://browser-region/locale/region.properties");
  219. pref("browser.search.order.2",                "chrome://browser-region/locale/region.properties");
  220. pref("browser.search.order.3",                "chrome://browser-region/locale/region.properties");
  221. pref("browser.search.order.4",                "chrome://browser-region/locale/region.properties");
  222. pref("browser.search.order.5",                "chrome://browser-region/locale/region.properties");
  223. pref("browser.search.order.6",                "chrome://browser-region/locale/region.properties");
  224. pref("browser.search.order.7",                "chrome://browser-region/locale/region.properties");
  225. pref("browser.search.order.8",                "chrome://browser-region/locale/region.properties");
  226. pref("browser.search.order.9",                "chrome://browser-region/locale/region.properties");
  227.  
  228. pref("browser.search.param.Google.1.default", "chrome://branding/content/searchconfig.properties");
  229. pref("browser.search.param.Google.1.custom",  "chrome://branding/content/searchconfig.properties");
  230. pref("browser.search.order.Yahoo.1",          "chrome://branding/content/searchconfig.properties");
  231. pref("browser.search.order.Yahoo.2",          "chrome://branding/content/searchconfig.properties");
  232. pref("browser.search.order.Yahoo",            "chrome://branding/content/searchconfig.properties");
  233.  
  234. // search bar results always open in a new tab
  235. pref("browser.search.openintab", false);
  236.  
  237. // send ping to the server to update
  238. pref("browser.search.update", true);
  239.  
  240. // disable logging for the search service update system by default
  241. pref("browser.search.update.log", false);
  242.  
  243. // Check whether we need to perform engine updates every 6 hours
  244. pref("browser.search.updateinterval", 6);
  245.  
  246. // enable search suggestions by default
  247. pref("browser.search.suggest.enabled", true);
  248.  
  249. pref("browser.history.grouping", "day");
  250. pref("browser.sessionhistory.max_entries", 50);
  251.  
  252. // handle external links
  253. // 0=default window, 1=current window/tab, 2=new window, 3=new tab in most recent window
  254. pref("browser.link.open_external", 3);
  255.  
  256. // handle links targeting new windows
  257. pref("browser.link.open_newwindow", 3);
  258.  
  259. // 0: no restrictions - divert everything
  260. // 1: don't divert window.open at all
  261. // 2: don't divert window.open with features
  262. pref("browser.link.open_newwindow.restriction", 2);
  263.  
  264. // Tab browser preferences.
  265. pref("browser.tabs.loadInBackground", true);
  266. pref("browser.tabs.loadFolderAndReplace", true);
  267. pref("browser.tabs.opentabfor.middleclick", true);
  268. pref("browser.tabs.loadDivertedInBackground", false);
  269. pref("browser.tabs.loadBookmarksInBackground", false);
  270. pref("browser.tabs.tabMinWidth", 100);
  271. pref("browser.tabs.tabClipWidth", 140);
  272. pref("browser.tabs.openNewTabsOnTheRight", false);
  273.  
  274. // Where to show tab close buttons:
  275. // 0  on active tab only
  276. // 1  on all tabs until tabClipWidth is reached, then active tab only
  277. // 2  no close buttons at all
  278. // 3  at the end of the tabstrip
  279. pref("browser.tabs.closeButtons", 1);
  280.  
  281. // When tabs opened by links in other tabs via a combination of 
  282. // browser.link.open_newwindow being set to 3 and target="_blank" etc are
  283. // closed:
  284. // true   return to the tab that opened this tab (its owner)
  285. // false  return to the adjacent tab (old default)
  286. pref("browser.tabs.selectOwnerOnClose", true);
  287.  
  288. // Default bookmark sorting
  289. pref("browser.bookmarks.sort.direction", "descending");
  290. pref("browser.bookmarks.sort.resource", "rdf:http://home.netscape.com/NC-rdf#Name");
  291.  
  292. // Scripts & Windows prefs
  293. pref("dom.disable_open_during_load",              true);
  294. pref("javascript.options.showInConsole",          false);
  295. // Make the status bar reliably present and unaffected by pages
  296. pref("dom.disable_window_open_feature.status",    true);
  297. // This is the pref to control the location bar, change this to true to 
  298. // force this instead of or in addition to the status bar - this makes 
  299. // the origin of popup windows more obvious to avoid spoofing but we 
  300. // cannot do it by default because it affects UE for web applications.
  301. pref("dom.disable_window_open_feature.location",  false);
  302. pref("dom.disable_window_status_change",          true);
  303. // allow JS to move and resize existing windows
  304. pref("dom.disable_window_move_resize",            false);
  305. // prevent JS from monkeying with window focus, etc
  306. pref("dom.disable_window_flip",                   true);
  307.  
  308. // popups.policy 1=allow,2=reject
  309. pref("privacy.popups.policy",               1);
  310. pref("privacy.popups.usecustom",            true);
  311. pref("privacy.popups.firstTime",            true);
  312. pref("privacy.popups.showBrowserMessage",   true);
  313.  
  314. pref("privacy.item.history",    true);
  315. pref("privacy.item.formdata",   true);
  316. pref("privacy.item.passwords",  false);
  317. pref("privacy.item.downloads",  true);
  318. pref("privacy.item.cookies",    false);
  319. pref("privacy.item.cache",      true);
  320. pref("privacy.item.siteprefs",  false);
  321. pref("privacy.item.sessions",   true);
  322. pref("privacy.item.configuredAccounts",   false);
  323.  
  324. pref("privacy.sanitize.sanitizeOnShutdown", false);
  325. pref("privacy.sanitize.promptOnSanitize", true);
  326.  
  327. pref("network.proxy.share_proxy_settings",  false); // use the same proxy settings for all protocols
  328.  
  329. pref("network.cookie.cookieBehavior",       0); // cookies enabled
  330. pref("network.cookie.enableForCurrentSessionOnly", false);
  331.  
  332. // l12n and i18n
  333. pref("intl.accept_languages", "chrome://global/locale/intl.properties");
  334. // collationOption is only set on linux for japanese. see bug 18338 and 62015
  335. // we need to check if this pref is still useful.
  336. pref("intl.collationOption",  "chrome://global-platform/locale/intl.properties");
  337. pref("intl.charsetmenu.browser.static", "chrome://global/locale/intl.properties");
  338. pref("intl.charsetmenu.browser.more1",  "chrome://global/locale/intl.properties");
  339. pref("intl.charsetmenu.browser.more2",  "chrome://global/locale/intl.properties");
  340. pref("intl.charsetmenu.browser.more3",  "chrome://global/locale/intl.properties");
  341. pref("intl.charsetmenu.browser.more4",  "chrome://global/locale/intl.properties");
  342. pref("intl.charsetmenu.browser.more5",  "chrome://global/locale/intl.properties");
  343. pref("intl.charsetmenu.browser.unicode",  "chrome://global/locale/intl.properties");
  344. pref("intl.charset.detector", "chrome://global/locale/intl.properties");
  345. pref("intl.charset.default",  "chrome://global-platform/locale/intl.properties");
  346. pref("font.language.group", "chrome://global/locale/intl.properties");
  347. pref("intl.menuitems.alwaysappendaccesskeys","chrome://global/locale/intl.properties");
  348. pref("intl.menuitems.insertseparatorbeforeaccesskeys","chrome://global/locale/intl.properties");
  349.  
  350. // 0=lines, 1=pages, 2=history , 3=text size
  351. //@line 382 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  352. pref("mousewheel.withshiftkey.action",2);
  353. pref("mousewheel.withshiftkey.sysnumlines",false);
  354. pref("mousewheel.withshiftkey.numlines",1);
  355. pref("mousewheel.withaltkey.action",0);
  356. pref("mousewheel.withaltkey.sysnumlines",false);
  357. pref("mousewheel.withaltkey.numlines",1);
  358. pref("mousewheel.withmetakey.action",0);
  359. pref("mousewheel.withmetakey.sysnumlines",true);
  360. pref("mousewheel.withmetakey.numlines",1);
  361. //@line 392 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  362. pref("mousewheel.withcontrolkey.action",3);
  363. pref("mousewheel.withcontrolkey.sysnumlines",false);
  364. pref("mousewheel.withcontrolkey.numlines",1);
  365.  
  366. pref("profile.allow_automigration", false);   // setting to false bypasses automigration in the profile code
  367.  
  368. // Customizable toolbar stuff
  369. pref("custtoolbar.personal_toolbar_folder", "");
  370.  
  371. // pref to control the alert notification 
  372. pref("alerts.slideIncrement", 1);
  373. pref("alerts.slideIncrementTime", 10);
  374. pref("alerts.totalOpenTime", 4000);
  375. pref("alerts.height", 50);
  376.  
  377. pref("browser.xul.error_pages.enabled", true);
  378.  
  379. pref("signon.rememberSignons",              true);
  380. pref("signon.expireMasterPassword",         false);
  381. pref("signon.SignonFileName",               "signons.txt");
  382. pref("signon.SignonFileName2",              "signons2.txt");
  383. pref("signon.prefillForms",                 true);
  384.  
  385. // We want to make sure mail URLs are handled externally...
  386. pref("network.protocol-handler.external.mailto", true); // for mail
  387. pref("network.protocol-handler.external.news", true);   // for news
  388. pref("network.protocol-handler.external.snews", true);  // for secure news
  389. pref("network.protocol-handler.external.nntp", true);   // also news
  390. // ...without warning dialogs
  391. pref("network.protocol-handler.warn-external.mailto", false);
  392. pref("network.protocol-handler.warn-external.news", false);
  393. pref("network.protocol-handler.warn-external.snews", false);
  394. pref("network.protocol-handler.warn-external.nntp", false);
  395.  
  396. // By default, all protocol handlers are exposed.  This means that
  397. // the browser will respond to openURL commands for all URL types.
  398. // It will also try to open link clicks inside the browser before
  399. // failing over to the system handlers.
  400. pref("network.protocol-handler.expose-all", true);
  401. pref("network.protocol-handler.expose.mailto", false);
  402. pref("network.protocol-handler.expose.news", false);
  403. pref("network.protocol-handler.expose.snews", false);
  404. pref("network.protocol-handler.expose.nntp", false);
  405.  
  406. // Default security warning dialogs to show once.
  407. pref("security.warn_entering_secure.show_once", false);
  408. pref("security.warn_entering_weak.show_once", true);
  409. pref("security.warn_leaving_secure.show_once", false);
  410. pref("security.warn_viewing_mixed.show_once", true);
  411. pref("security.warn_submit_insecure.show_once", false);
  412.  
  413. //@line 446 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  414. pref("browser.urlbar.clickSelectsAll", true);
  415. //@line 448 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  416.  
  417. pref("accessibility.typeaheadfind", false);
  418. pref("accessibility.typeaheadfind.timeout", 5000);
  419. pref("accessibility.typeaheadfind.linksonly", false);
  420. pref("accessibility.typeaheadfind.flashBar", 1);
  421.  
  422. // Disable the default plugin for firefox
  423. pref("plugin.default_plugin_disabled", true);
  424.  
  425. // plugin finder service url
  426. //pref("pfs.datasource.url", "https://updates.flock.com/plugin_finder/PluginFinderService.php?mimetype=%PLUGIN_MIMETYPE%&appID=%APP_ID%&appVersion=%APP_VERSION%&clientOS=%CLIENT_OS%&chromeLocale=%CHROME_LOCALE%");
  427. pref("pfs.datasource.url", "https://pfs.mozilla.org/plugins/PluginFinderService.php?mimetype=%PLUGIN_MIMETYPE%&appID=%APP_ID%&appVersion=%APP_VERSION%&clientOS=%CLIENT_OS%&chromeLocale=%CHROME_LOCALE%");
  428.  
  429. //@line 462 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  430. pref("browser.preferences.instantApply", false);
  431. //@line 469 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  432. pref("browser.preferences.animateFadeIn", false);
  433. //@line 471 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  434.  
  435. pref("browser.download.show_plugins_in_list", true);
  436. pref("browser.download.hide_plugins_without_extensions", true);
  437.  
  438. // Setting this pref to |true| forces BiDi UI menu items and keyboard shortcuts
  439. // to be exposed. By default, only expose it for bidi-associated system locales.
  440. pref("bidi.browser.ui", false);
  441.  
  442. // Backspace and Shift+Backspace behavior
  443. // 0 goes Back/Forward
  444. // 1 act like PgUp/PgDown
  445. // 2 and other values, nothing
  446. //@line 486 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  447. pref("browser.backspace_action", 0);
  448. //@line 488 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  449.  
  450. // this will automatically enable inline spellchecking (if it is available) for
  451. // editable elements in HTML
  452. // 0 = spellcheck nothing
  453. // 1 = check multi-line controls [default]
  454. // 2 = check multi/single line controls
  455. pref("layout.spellcheckDefault", 1);
  456.  
  457. pref("view_source.editor.path", "");
  458. pref("view_source.editor.external", false);
  459.  
  460. //@line 500 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  461. pref("browser.contentHandlers.types.0.title", "chrome://browser-region/locale/region.properties");
  462. pref("browser.contentHandlers.types.0.uri", "chrome://browser-region/locale/region.properties");
  463. pref("browser.contentHandlers.types.0.type", "application/vnd.mozilla.maybe.feed");
  464. pref("browser.contentHandlers.types.1.title", "chrome://browser-region/locale/region.properties");
  465. pref("browser.contentHandlers.types.1.uri", "chrome://browser-region/locale/region.properties");
  466. pref("browser.contentHandlers.types.1.type", "application/vnd.mozilla.maybe.feed");
  467. pref("browser.contentHandlers.types.2.title", "chrome://browser-region/locale/region.properties");
  468. pref("browser.contentHandlers.types.2.uri", "chrome://browser-region/locale/region.properties");
  469. pref("browser.contentHandlers.types.2.type", "application/vnd.mozilla.maybe.feed");
  470. pref("browser.contentHandlers.types.3.title", "chrome://browser-region/locale/region.properties");
  471. pref("browser.contentHandlers.types.3.uri", "chrome://browser-region/locale/region.properties");
  472. pref("browser.contentHandlers.types.3.type", "application/vnd.mozilla.maybe.feed");
  473. pref("browser.contentHandlers.types.4.title", "chrome://browser-region/locale/region.properties");
  474. pref("browser.contentHandlers.types.4.uri", "chrome://browser-region/locale/region.properties");
  475. pref("browser.contentHandlers.types.4.type", "application/vnd.mozilla.maybe.feed");
  476. pref("browser.contentHandlers.types.5.title", "chrome://browser-region/locale/region.properties");
  477. pref("browser.contentHandlers.types.5.uri", "chrome://browser-region/locale/region.properties");
  478. pref("browser.contentHandlers.types.5.type", "application/vnd.mozilla.maybe.feed");
  479.  
  480. pref("browser.feeds.handler", "ask");
  481. //@line 521 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  482.  
  483. //@line 523 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  484. // Safe browsing does nothing unless both these prefs are set.
  485. pref("browser.safebrowsing.enabled", true);
  486. pref("browser.safebrowsing.remoteLookups", false);
  487.  
  488. // Non-enhanced mode (local url lists) URL list to check for updates
  489. pref("browser.safebrowsing.provider.0.updateURL", "http://sb.google.com/safebrowsing/update?client={moz:client}&appver={moz:version}&");
  490.  
  491. pref("browser.safebrowsing.dataProvider", 0);
  492.  
  493. // Does the provider name need to be localizable?
  494. pref("browser.safebrowsing.provider.0.name", "Google");
  495. pref("browser.safebrowsing.provider.0.lookupURL", "http://sb.google.com/safebrowsing/lookup?sourceid=firefox-antiphish&features=TrustRank&client={moz:client}&appver={moz:version}&");
  496. pref("browser.safebrowsing.provider.0.keyURL", "https://sb-ssl.google.com/safebrowsing/getkey?client={moz:client}&");
  497. pref("browser.safebrowsing.provider.0.reportURL", "http://sb.google.com/safebrowsing/report?");
  498.  
  499. // privacy policy -- Both url and fallbackurl must exist, although they may
  500. // point to the same file.  fallbackurl must be a chrome url
  501. pref("browser.safebrowsing.provider.0.privacy.url", "http://www.google.com/tools/firefox/firefox_privacy.html?hl=%LOCALE%");
  502. pref("browser.safebrowsing.provider.0.privacy.fallbackurl", "chrome://browser/content/preferences/phishEULA.xhtml");
  503.  
  504. // HTML report pages
  505. pref("browser.safebrowsing.provider.0.reportGenericURL", "http://{moz:locale}.phish-generic.mozilla.com/?hl={moz:locale}");
  506. pref("browser.safebrowsing.provider.0.reportErrorURL", "http://{moz:locale}.phish-error.mozilla.com/?hl={moz:locale}");
  507. pref("browser.safebrowsing.provider.0.reportPhishURL", "http://www.google.com/safebrowsing/report_phish/?hl={moz:locale}");
  508.  
  509. // FAQ URL
  510. pref("browser.safebrowsing.warning.infoURL", "http://%LOCALE%.www.mozilla.com/%LOCALE%/firefox/phishing-protection/");
  511. //@line 551 "/cygdrive/K/tinderbuild/src/flock/mozilla/browser/flockapp/profile/flock.js"
  512.  
  513. // defaults to true
  514. pref("browser.EULA.2.accepted", true);
  515.  
  516. // if we rev the EULA again, we should bump this so users agree to the new EULA
  517. pref("browser.EULA.version", 2);
  518.  
  519. pref("browser.sessionstore.enabled", true);
  520. pref("browser.sessionstore.resume_from_crash", true);
  521. pref("browser.sessionstore.resume_session_once", false);
  522.  
  523. // minimal interval between two save operations in milliseconds
  524. pref("browser.sessionstore.interval", 10000);
  525. // maximum amount of POSTDATA to be saved in bytes per history entry (-1 = all of it)
  526. // (NB: POSTDATA will be saved either entirely or not at all)
  527. pref("browser.sessionstore.postdata", 0);
  528. // which sites to save text data, POSTDATA and cookies for
  529. // 0 = all, 1 = unencrypted sites only, 2 = none
  530. pref("browser.sessionstore.privacy_level", 1);
  531. // number of remembered reopenable tabs (per window)
  532. pref("browser.sessionstore.max_tabs_undo", 10);
  533. pref('flock.launch_count',0);
  534. pref('flock.favorites.loadPageInSidebar', false);
  535. pref('flock.favorites.showKeyword', false);
  536. pref('flock.favorites.webservice.id', '');
  537. pref('flock.favorites.doPublish.DontShowAgain', false);
  538. pref('flock.favorites.shareByDefault', true);
  539. pref('flock.favorites.privateByDefault', true);
  540. pref('flock.favorites.copyFavorites', true);
  541. pref('flock.favorites.indexedInitialFavorites', false);
  542. pref('flock.favorites.starMessageBar', true);
  543. pref('flock.favorites.starShowProperties', false);
  544. pref('flock.favorites.star2colors', true);
  545. // That will be set to false when the user is not using local favorites (online only)
  546. pref('flock.favorites.do.local', true);
  547. pref('flock.favorites.do.folder', '');
  548.  
  549. pref("flock.blog.editInTab", true);
  550.  
  551. pref("flock.service.logger.enabled", true);
  552. pref("flock.service.logger.level", 3);
  553. pref("flock.service.indexer.enabled", true);
  554. pref("flock.service.indexer.indexWebHistory", true);
  555.  
  556. // Comma delimited list of services that will be excluded from the default
  557. // media streams in the Media Bar media stream menu
  558. pref('flock.mediabar.defaultMediaStreams.ignoredServicesList','');
  559. // Comma delimited list of services that will be excluded from the search bar
  560. // located in the Media Bar
  561. pref("flock.mediabar.searchBar.ignoredServicesList", "piczo");
  562. // pref("flock.first_run.url", "http://www.flock.com/products/flock/releases/cardinal.php");
  563.  
  564. // by default we want to keep history for 31 days [http://bugzilla.flock.com/show_bug.cgi?id=2965]
  565. pref("browser.history_expire_days", 31);
  566.  
  567. pref('flock.search.flyout.showHistory', true);
  568. pref('flock.search.flyout.showFavorites', true);
  569. pref('flock.search.flyout.showOtherEngines', true);
  570. pref('flock.search.excludedEngines', 'Yahoo!,Shadows,Wikipedia (English),eBay,Technorati Search,Wink People Search,Ask');
  571. pref('flock.search.flyout.showYahooLiveResults', true);
  572.  
  573. pref('flock.photo.uploader.showPhotosOnUpload', true);
  574. pref('flock.photo.uploader.firstruncomplete', false);
  575. pref('flock.photo.preferredServices', 'flickr,photobucket'); // XXX this is a hack while our accounts/services is being worked on my chris -- remove this XXX - ja
  576. pref('flock.photo.dropCount', 0); // pref so we don't ask about flock props too earlier - logic currently is that we only on third drop
  577. pref('flock.photobar.rememberedSpreadFlock', false);
  578. pref('flock.photo.spreadFlock', false);
  579. pref('flock.photo.singleUpload.spreadFlock', false);
  580. pref('flock.photo.tagline', 'spread_flock.gif');
  581. pref('flock.photo.spreadFlock.is_disabled', false);
  582.  
  583. pref('flock.feeds.sidebar_tab_interaction', true);
  584. pref('flock.feeds.auto_mark_as_read', true);
  585. pref('flock.feeds.default_view_style', 'excerpts');
  586. pref('flock.feeds.default_column_style', 'single');
  587.  
  588. // Specify which account appears at the top of each category of service
  589. pref('flock.accounts.top.media', '');
  590. pref('flock.accounts.top.blog', '');
  591. pref('flock.accounts.top.favorite', '');
  592.  
  593. // Preferences for the poller intervals (everything is in seconds)
  594. pref('flock.poller.refreshDelay', 6);
  595. pref('flock.poller.refreshTimeout', 90);
  596. pref('flock.poller.defaultRefreshInterval', 3600);
  597.  
  598. pref('flock.poller.maxConcurrentRefreshes', 1);
  599.  
  600. pref('flock.liveSearch.enabledServices', 'flock,yahoo');
  601. pref('flock.people.addServicesUrl', 'http://flock.com/services/');
  602.  
  603. pref('flock.service.webdetective.updateinterval', 6);
  604.  
  605. pref("browser.search.param.yahoo-fr", "flo2");
  606. pref("browser.search.param.yahoo-type", "fl09");
  607.